home *** CD-ROM | disk | FTP | other *** search
/ USA Bestseller / USA BESTSELLER Vol 1-95 (Hepp-Computer)(1995).iso / e235 / callmray.bat < prev    next >
DOS Batch File  |  1994-02-15  |  1KB  |  48 lines

  1. @echo off
  2. REM -------------------------------------------------------------------
  3. REM Batchfile to do the model/trace/model loop.
  4. REM Moray will search this file for a line containing the program name
  5. REM (which I can't write here, since it would be replaced) and replaces
  6. REM it with a call to the scene you were editing.
  7. REM -------------------------------------------------------------------
  8.  
  9. REM Set the environment variable, so that Moray knows it was called from 
  10. REM here and can support the RENDER button
  11. set MORAY=YES
  12.  
  13. :ModelIt
  14. REM Change disk and directory to your modeller directory
  15. c:
  16. cd \modeller
  17.  
  18. REM Call Moray to design or edit the scene. Moray will edit this line
  19. REM during the cycle. You can place any commandline parameter between
  20. REM the EXE name and the scene name.
  21. MORAY.EXE MRYSTART.MDL
  22.  
  23. REM Check whether a render was requested (if so errorlevel is set to 16)
  24. if errorlevel 16 goto RenderIt
  25. if errorlevel 1 goto Error
  26. goto End
  27.  
  28. REM User asked Moray for a render, so change to the POV Scene directory 
  29. REM and call the GO.BAT that was created. You may need to edit these lines
  30. REM to reflect your directory structure
  31. :RenderIt
  32. c:
  33. cd \povray2\scenes
  34. call go.bat
  35.  
  36. REM After rendering go back to Moray for further design.
  37. goto ModelIt
  38.  
  39. REM MORAY exited with an error condition
  40. :Error
  41. echo.
  42. echo MORAY returned an error. Leaving the Editing/Rendering loop.
  43. echo.
  44. :End
  45.  
  46. REM Clear the environment variable.
  47. set MORAY=
  48.